See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| import time | |
| import os | |
| import sys | |
| import subprocess | |
| import platform | |
| import mimetypes | |
| import base64 | |
| from google import genai | |
| from google.genai import types | |
| from tkinter import Tk, filedialog |
| #!/usr/bin/env zsh | |
| # | |
| # Released to the public domain | |
| # | |
| # - No C0 control codes, except: | |
| # - \u0009: tab character | |
| # - \u001C: file separator (largest) | |
| # - \u001D: group separator | |
| # - \u001E: record separator | |
| # - \u001F: unit separator |
| # Use this script to test that your Telegram bot works. | |
| # | |
| # Install the dependency | |
| # | |
| # $ gem install telegram_bot | |
| # | |
| # Run the bot | |
| # | |
| # $ ruby bot.rb | |
| # |
| @ahmedhfarag/ngx-perfect-scrollbar | |
| @ahmedhfarag/ngx-virtual-scroller | |
| another-shai | |
| @art-ws/common | |
| @art-ws/config-eslint | |
| @art-ws/config-ts | |
| @art-ws/db-context | |
| @art-ws/di-node | |
| @art-ws/di | |
| @art-ws/eslint |
| using UnityEngine; | |
| /// <summary> | |
| /// Small helper class to convert viewport, screen or world positions to canvas space. | |
| /// Only works with screen space canvases. | |
| /// </summary> | |
| /// <example> | |
| /// <code> | |
| /// objectOnCanvasRectTransform.anchoredPosition = specificCanvas.WorldToCanvasPoint(worldspaceTransform.position); | |
| /// </code> |
| #!/bin/bash | |
| ## this little Gist is for Copy the Letsencrypt Cert from an Linux machine (e.g. Raspberry PI or Synology NAS) | |
| ## to the router (Fritzbox). | |
| ## It is usefull to be able to speak to the Router over DDNS without any Cert issue in the Browser. | |
| ## thanks to https://gist.github.com/mahowi for the perfect Idea | |
| ## put it in /etc/letsencrypt/renewal-hooks/post so it gets run after every renewal. | |
| ## since Fritz OS 7.25 it is needed to select a Username, from a security point of view | |
| ## it is always a good idea to have a non default user name. And as normaly a Fritz Box | |
| ## is connected to the Internet, the prefered method should be WITH Username. |
| #!/bin/bash | |
| # This script takes a clean Ubuntu Server 24.04 LTS AMI and installs and configures | |
| # everything needed to deploy a Rails 7 app to it. The resulting state is a secure, | |
| # production-ready instance. | |
| set -euo pipefail | |
| # --- AESTHETICS --- |
| #!/usr/bin/fish | |
| # Update this to what you need | |
| set repos /home/$USER/repo1 /home/$USER/repo2 | |
| for repo in $repos | |
| cd $repo | |
| git fetch upstream |